AksScript
|
Previous Top Next |
Name
|
Sample
|
Explain
|
NEW
|
NEW "c:\xyz.zip"
|
Create new archive (it will always create new archive,
with new name)
|
OPEN
|
OPEN "c:\xyz.zip"
|
Open exist archive (or create if not exist)
|
CLOSE
|
CLOSE
|
Close opened archive
|
EXTR
|
EXTR "*.*" "c:\"
|
Extract file in archive
|
EXTRACT
|
EXTRACT "*.*" "c:\"
|
Extract file in archive
|
ADD "C:\*.zip"
|
Add file to archive (support wildcards)
|
|
DOADD
|
DOADD
|
Start Adding files
|
DEL
|
DEL "a.file"
|
Delete a file in archive
|
DELETE
|
DELETE "a.file"
|
Delete a file in archive
|
REN
|
REN "from.ext" "too.ext"
|
Rename file (zip only) (#1)
|
RENDIR
|
RENDIR "FromDir" "ToDir"
|
Rename whole dir (zip only) (#1)
|
PASSWORD
|
PASSWORD "pass"
|
Change password for add and extract.
|
USEEXTRPATH
|
USEEXTRPATH "OFF"
|
Use path in extract
|
USEADDPATH
|
USEADDPATH "OFF"
|
Use path in add
|
USESUBDIR
|
USESUBDIR "OFF"
|
Add subdir when using wildcards
|
RUNFILE
|
RUNFILE "C:\test.exe"
|
Run a file (not only exe file)
|